home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / menuba.zip / TEST.ZIP / TEST < prev    next >
Text File  |  1992-01-04  |  257b  |  15 lines

  1. all: test.exe
  2.  
  3. test.res: test.rc test.dlg
  4.     rc -r test.rc
  5.  
  6. test.obj: test.c
  7.     cl -c -AM -Gsw -Od -Zpe test.c
  8.  
  9. test.exe:: test.obj test.def
  10.     link /NOD test, , , mlibcew libw, test.def
  11.     rc test.res
  12.  
  13. test.exe:: test.res
  14.     rc test.res
  15.